-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixing java lesson's test output #277
Conversation
Fixing tests with simple results = single string output ...
final var expected = "result";
... |
Внес правки для устранения: exercises-1 | Test.java:17: error: cannot find symbol |
Fixing another 2 simple outputs (+checked the modified files for presence of FileDescriptor) |
ByteArrayOutputStream out = new ByteArrayOutputStream(); | ||
System.setOut(new PrintStream(out)); | ||
|
||
App.printMotto(); | ||
App.main(null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А почему имя метода поменяли?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
По не опытности и не знанию.
(еще только учусь)
Исправлю!
@unsigable Привет! Есть один вопросик, написал выше |
@Malcom1986 Возвращаю как было! Если будут другие - учту! P.S. |
@unsigable Привет! Поправили? Не вижу нового коммита |
@unsigable Привет! Нужна тук какая-нибудь помощь? |
@Malcom1986 Прошу прощение за задержку - обстоятельства... Я внёс правку - вернул название метода printMotto. ByteArrayOutputStream out = new ByteArrayOutputStream();
System.setOut(new PrintStream(out));
App.printMotto();
final var actual = out.toString().trim(); Что-то еще надо было исправить? |
у меня почему-то периодически начали возникать проблемы то с "подтверждением почты", то с O2Auth... |
Add output example for 22nd java lesson's task (like it was in previous lessons)
Fix output: